home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-10-09 | 374 b | 21 lines | [TEXT/tefi] |
- ; @(;)Copyright Apple Computer 1987 Version 1.2 of sigstack.s on 89/08/10 12:25:02 (Apple)
- ; "sigstack.s"
-
- ; error = sigstack(newsigstack, oldsigstack);
-
-
- export auxsigstack
- import cerror
-
- auxsigstack proc
- move.l 4(sp),a0 ; fetch argument
- move.l 8(sp),d1 ; fetch argument
- move.l #133,d0 ; setup syscall type
- trap #15
- bcs.s LS2
- rts
- LS2
- jmp cerror
- endp
- end
-